home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h_doc / ColourMenu < prev    next >
Text File  |  1996-05-21  |  1KB  |  42 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    ColourMenu.ColourMenu.c
  12.     Author:  Copyright © 1994 Craig Beech
  13.     Version: 1.00 (27 Aug 1994)
  14.     Purpose: Equivalent of the Desk_RISC_OSLib colourmenu function.
  15. */
  16.  
  17. #ifndef __Desk_ColourMenu_h
  18. #define __Desk_ColourMenu_h
  19.  
  20. #ifdef __cplusplus
  21.     extern "C" {
  22. #endif
  23.  
  24.  
  25. #ifndef __Desk_Menu_h
  26.     #include "Desk.Menu.h"
  27. #endif
  28.  
  29. extern Desk_menu_ptr Desk_ColourMenu_Create(char *name);
  30. /*
  31. Inputs:   name - title of colour menu.
  32. Returns:  Desk_menu_ptr - colour menu.
  33. Purpose:  Creates a colour menu similar to the Desk_RISC_OSLib function.
  34. */
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40.  
  41. #endif
  42.